type net/http.conn

20 uses

	net/http (current package)
		server.go#L254: type conn struct {
		server.go#L310: func (c *conn) hijacked() bool {
		server.go#L317: func (c *conn) hijackLocked() (rwc net.Conn, buf *bufio.ReadWriter, err error) {
		server.go#L427: 	conn             *conn
		server.go#L634: func (s *Server) newConn(rwc net.Conn) *conn {
		server.go#L635: 	c := &conn{
		server.go#L663: 	conn    *conn      // conn is nil after handler exit.
		server.go#L1012: func (c *conn) readRequest(ctx context.Context) (w *response, err error) {
		server.go#L1772: func (c *conn) finalFlush() {
		server.go#L1790: func (c *conn) close() {
		server.go#L1820: func (c *conn) closeWriteAndWait() {
		server.go#L1865: func (c *conn) setState(nc net.Conn, state ConnState, runHook bool) {
		server.go#L1886: func (c *conn) getState() (state ConnState, unixSec int64) {
		server.go#L1933: func (c *conn) serve(ctx context.Context) {
		server.go#L2194: func (c *conn) maybeServeUnencryptedHTTP2(ctx context.Context) bool {
		server.go#L2199: 	hasPreface := func(c *conn, preface []byte) bool {
		server.go#L3114: 	activeConn map[*conn]struct{}
		server.go#L3623: func (s *Server) trackConn(c *conn, add bool) {
		server.go#L3627: 		s.activeConn = make(map[*conn]struct{})
		server.go#L4062: 	c *conn